home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / CH02 / TRUTHTBL / TRUTHP.DPR < prev    next >
Encoding:
Text File  |  1995-12-16  |  300 b   |  16 lines

  1. program Truthp;
  2.  
  3. uses
  4.   Forms,
  5.   Truthu in 'TRUTHU.PAS' {TruthTbl},
  6.   Aboutp in 'ABOUTP.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Logic Simulation';
  12.   Application.CreateForm(TTruthTbl, TruthTbl);
  13.   Application.CreateForm(TAboutBox, AboutBox);
  14.   Application.Run;
  15. end.
  16.